home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SELF16._W_ < prev    next >
Text File  |  1997-05-22  |  870b  |  39 lines

  1. #
  2. # Watcom makefile for SELFTEST [Win16]
  3. # Requires WSC16.LIB
  4. #
  5. # TO MAKE: wmake -f self16._W_
  6. #
  7.  
  8. CCFLAGS = -c -oaxt -d2 -w4 -zW
  9.  
  10. OBJS = selftest.obj about.obj runtest.obj line.obj menu.obj paint.obj sioerror.obj
  11.  
  12. selftest.exe: $(OBJS) selftest.res selftest.def wsc16.lib
  13.    wlink @self16.lnk
  14.    wrc selftest.res
  15.  
  16. selftest.res: $(OBJS) selftest.rc
  17.    wrc -r -bt=windows selftest.rc
  18.  
  19. about.obj: about.c about.h
  20.    wcl $(CCFLAGS)  about.c
  21.  
  22. line.obj: line.c line.h wsc.h
  23.     wcl $(CCFLAGS)  line.c
  24.  
  25. menu.obj: menu.c menu.h wsc.h
  26.     wcl $(CCFLAGS)  menu.c
  27.  
  28. paint.obj: paint.c paint.h wsc.h
  29.     wcl $(CCFLAGS)  paint.c
  30.  
  31. selftest.obj: selftest.c selftest.h wsc.h
  32.    wcl $(CCFLAGS)  selftest.c
  33.  
  34. runtest.obj: runtest.c runtest.h wsc.h
  35.    wcl $(CCFLAGS)  runtest.c
  36.  
  37. sioerror.obj: sioerror.c sioerror.h wsc.h
  38.    wcl $(CCFLAGS)  sioerror.c
  39.